home *** CD-ROM | disk | FTP | other *** search
/ QuickTime 2.0 Developer Kit / QuickTime 2.0 Developer Kit.iso / mac / MAC / Programming Stuff / Sample Code / Music Architecture / Mixed Bag / •Instrument Editor / Instrument Editor Filing.h < prev    next >
Encoding:
C/C++ Source or Header  |  1994-09-22  |  647 b   |  34 lines  |  [TEXT/KAHL]

  1. /*
  2.  * file: Instrument Editor Filing.h
  3.  *
  4.  * started 12 January 1992 16:45
  5.  * david van brink
  6.  *
  7.  */
  8.  
  9. /*--------------------------
  10.     Inclusions
  11. --------------------------*/
  12.  
  13.  #include <Files.h>
  14.  
  15. /*--------------------------
  16.     Constants
  17. --------------------------*/
  18.  
  19. #define kCreatorFileType 'InEd'
  20. #define kDocumentFileType 'IEDo'
  21. #define kDocumentResType 'IEDo'
  22. #define kInstrumentListResType 'IELo'
  23.  
  24. /*--------------------------
  25.     Prototypes
  26. --------------------------*/
  27.  
  28. void OpenDoc(short n,short item, short ref);
  29. short SaveDoc(short n,short item, short ref);
  30. short SaveAsDoc(short n,short item, short ref);
  31.  
  32. void OpenDocSpec(FSSpec *fSpec);
  33.  
  34.